home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000246_news@columbia.edu _Tue Dec 3 10:10:53 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.8.3/8.8.3) with ESMTP id KAA07083 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 3 Dec 1996 10:10:53 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.8.3/8.8.3) id KAA17363 for kermit.misc@watsun; Tue, 3 Dec 1996 10:10:52 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: K95 set modem command
  8. Date: 3 Dec 1996 15:10:06 GMT
  9. Organization: Columbia University
  10. Lines: 32
  11. Message-ID: <581fse$rp8$1@apakabar.cc.columbia.edu>
  12. References: <32A43C89.4FCF16CF@lvd.be>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <32A43C89.4FCF16CF@lvd.be>, Lieven Tomme  <ltom@lvd.be> wrote:
  16. : Under K95 on a Windows 95 platform, I have the following script,
  17. : invoked b y a shortcut (kermit -y com2.ini) :
  18. : set modem type hayes-2400
  19. : set port com2
  20. : set speed 9600
  21. : set server get-path c:/winbend/23112/brake c:/winbend23112/die etc.
  22. : set file download c:/winbend/23112/tmp
  23. : server
  24. : When a kermit client (hooked up by means of a serial line without
  25. : involved modems) requests a particular file, everything works
  26. : fine. However, by replacing
  27. : set modem type hayes-2400
  28. : with
  29. : set modem type none
  30. : as I am supposed to do, no communication occurs. Although the
  31. : simplicity, I am wondering if I overlooked something.
  32. Evidently your null modem cable does not have CD and DTR
  33. cross-connected in both directions, so K95 thinks there is no carrier,
  34. and therefore no connection.  This is OK when using modems, as there
  35. is *supposed* to be no carrier until after you successfully dial.
  36.  
  37. Solutions: (1) fix the cable, or (2) tell K95 to "set carrier off".
  38.  
  39. - Frank